home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1994 August: Tool Chest / Dev.CD Aug 94.toast / New System Software Extensions / OpenDoc A6 / OpenDoc Parts Framework / OPF / Found / FWStream / Sources / FWWep.cpp < prev   
Encoding:
C/C++ Source or Header  |  1994-04-21  |  603 b   |  31 lines  |  [TEXT/MPS ]

  1. #if defined(FW_BUILD_WIN) && !defined(FW_BUILD_WIN32S) && !defined(FW_BUILD_WINNT)
  2. //========================================================================================
  3. //
  4. //    File:                FWWep.cpp
  5. //    Release Version:    $ 1.0d1 $
  6. //
  7. //    Creation Date:        3/28/94
  8. //
  9. //    Copyright:    © 1994 by Apple Computer, Inc., all rights reserved.
  10. //
  11. //========================================================================================
  12.  
  13.  
  14. #include <Windows.h>
  15.  
  16. // prevent WEP from being mangled
  17.  
  18. extern "C"
  19. {
  20.     int CALLBACK WEP(int    /* sys_exit */);
  21. };
  22.  
  23. int CALLBACK WEP(int    /* sys_exit */)
  24. {
  25.     return TRUE;
  26. }
  27.  
  28. #endif
  29.  
  30.  
  31.